home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / agobot_fo.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  50 lines

  1. #
  2. # (C) Tenable Network Security
  3.  
  4. if(description)
  5. {
  6.  script_id(12128);
  7.  script_version ("$Revision: 1.3 $");
  8.  name["english"] = "Agobot.FO Backdoor Detection";
  9.  script_name(english:name["english"]);
  10.  
  11.  desc["english"] = "
  12. The remote host has the Agobot.FO backdoor installed.  This
  13. backdoor is known to:
  14. 1) scan local networks for common Microsoft vulnerabilities
  15. 2) scan local networks for exploitable DameWare systems
  16. 3) brute force local Microsoft machine User accounts
  17. 4) connect to an IRC channel and setup a BOT for remote command
  18. execution.
  19.  
  20. See also: http://www.f-secure.com/v-descs/agobot_fo.shtml
  21. Solution: This backdoor should be immediately removed from the network
  22. and manually cleaned.
  23. Risk factor : High";
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Determines the presence of Agobot.FO";
  28.  
  29.  script_summary(english:summary["english"]);
  30.  
  31.  script_category(ACT_GATHER_INFO);
  32.   
  33.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  34.  family["english"] = "Backdoors";
  35.  script_family(english:family["english"]);
  36.  script_dependencie("find_service2.nasl");
  37.  exit(0);
  38. }
  39.  
  40.  
  41. #
  42. # The code starts here:
  43. #
  44.  
  45. # This service is detected by find_service2.nasl
  46. port = get_kb_item("Services/agobot.fo");
  47. if ( port ) security_hole(port);
  48.